3f8b196122a991cd048d70385c0a5dca366cdc5f,src/org/giswater/controller/MenuController.java,MenuController,createExampleSchema,#String#String#,477
Before Change
// Ask confirmation
String schemaName = "sample_"+waterSoftware+suffix;
String msg = Utils.getBundleString("MenuController.project_name")+schemaName+Utils.getBundleString("MenuController.created_srid")+sridValue+Utils.getBundleString("MenuController.wish_continue"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
int res = Utils.showYesNoDialog(mainFrame, msg, Utils.getBundleString("MenuController.create_example_project")); //$NON-NLS-1$
if (res != JOptionPane.YES_OPTION) return;
After Change
String schemaName = "sample_"+waterSoftware+suffix;
String msg = Utils.getBundleString("MenuController.project_name")+schemaName;
msg+= Utils.getBundleString("MenuController.created_srid")+sridValue;
msg+= Utils.getBundleString("MenuController.wish_continue")+Utils.getBundleString("MenuController.disclaimer");
int res = Utils.showYesNoDialog(mainFrame, msg, Utils.getBundleString("MenuController.create_example_project"));
if (res != JOptionPane.YES_OPTION) return;